* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body.o-avtorju {
      font-family: 'Times New Roman', Times, serif;
      padding: 20px;
      background-color:skyblue;
    }

    h1 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 30px;
    }

    p {
      text-align: justify;
      margin-bottom: 20px;
      font-size: 20px;
    }

    .avtor {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    .avtor-1 {
      width: 400px;
      height: auto;
      margin: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      border-radius: 10px;
    }

    .avtor-1:hover {
      transform: scale(1.05);
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      animation: zoomIn 0.3s ease;
    }

    @keyframes zoomIn {
      from { transform: scale(0.7); opacity: 0.5; }
      to { transform: scale(1); opacity: 1; }
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .close:hover {
      transform: scale(1.2);
    }

    .caption {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      color: white;
      font-size: 20px;
   }

    a:link, a:visited {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }

    a:hover, a:active {
    background-color:black;
    color: white;
  }
